home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gconf2.postrm < prev    next >
Encoding:
Text File  |  2009-03-18  |  180 b   |  11 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
  5.   if [ -d /var/lib/gconf ]; then
  6.     find /var/lib/gconf -mindepth 2 -maxdepth 2 -exec rm -rf \{} \;
  7.   fi
  8. fi
  9.  
  10.  
  11.